Socket
Socket
Sign inDemoInstall

@types/shelljs

Package Overview
Dependencies
2
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/shelljs

TypeScript definitions for shelljs


Version published
Weekly downloads
629K
increased by13.1%
Maintainers
1
Created
Weekly downloads
 

Package description

What is @types/shelljs?

@types/shelljs provides TypeScript type definitions for the shelljs library, which is a portable (Windows/Linux/OS X) implementation of Unix shell commands on Node.js. It allows you to perform shell operations such as file manipulation, directory navigation, and command execution within a Node.js environment.

What are @types/shelljs's main functionalities?

File Manipulation

This feature allows you to perform various file operations such as copying, removing, and moving files.

const shell = require('shelljs');

// Copy a file
shell.cp('source.txt', 'destination.txt');

// Remove a file
shell.rm('file.txt');

// Move a file
shell.mv('old.txt', 'new.txt');

Directory Navigation

This feature allows you to navigate directories and list files within a directory.

const shell = require('shelljs');

// Change directory
shell.cd('/path/to/directory');

// List files in a directory
shell.ls();

Command Execution

This feature allows you to execute shell commands and handle their output and exit codes.

const shell = require('shelljs');

// Execute a command
if (shell.exec('echo "Hello, World!"').code !== 0) {
  shell.echo('Error: Command failed');
  shell.exit(1);
}

Other packages similar to @types/shelljs

Readme

Source

Installation

npm install --save @types/shelljs

Summary

This package contains type definitions for shelljs (http://shelljs.org).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shelljs.

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: @types/glob, @types/node

Credits

These definitions were written by Niklas Mollenhauer, Vojtech Jasny, George Kalpakas, Paul Huynh, Alexander Futász, ExE Boss, and Mirco Sanguineti.

FAQs

Last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc